farbfeld: enable on darwin

master
Nikolay Korotkiy 2021-02-05 16:36:06 +03:00
parent 24e5fe6075
commit 69c542e19c
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
1 changed files with 7 additions and 7 deletions

View File

@ -1,27 +1,27 @@
{ lib, stdenv, fetchgit, makeWrapper, file, libpng, libjpeg }:
{ lib, stdenv, fetchurl, makeWrapper, file, libpng, libjpeg }:
stdenv.mkDerivation rec {
pname = "farbfeld";
version = "4";
src = fetchgit {
url = "https://git.suckless.org/farbfeld";
rev = "refs/tags/${version}";
sha256 = "0pkmkvv5ggpzqwqdchd19442x8gh152xy5z1z13ipfznhspsf870";
src = fetchurl {
url = "https://dl.suckless.org/farbfeld/farbfeld-${version}.tar.gz";
sha256 = "0ap7rcngffhdd57jw9j22arzkbrhwh0zpxhwbdfwl8fixlhmkpy7";
};
buildInputs = [ libpng libjpeg ];
nativeBuildInputs = [ makeWrapper ];
installFlags = [ "PREFIX=/" "DESTDIR=$(out)" ];
installFlags = [ "PREFIX=$(out)" ];
postInstall = ''
wrapProgram "$out/bin/2ff" --prefix PATH : "${file}/bin"
'';
meta = with lib; {
description = "Suckless image format with conversion tools";
homepage = "https://tools.suckless.org/farbfeld/";
license = licenses.isc;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}