nixpkgs/pkgs/applications/editors/deadpixi-sam/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, freetype, libX11, libXi, libXt, libXft }:
2016-09-04 22:08:37 +00:00
stdenv.mkDerivation rec {
pname = "deadpixi-sam-unstable";
version = "2020-07-14";
2018-01-19 05:36:35 +00:00
src = fetchFromGitHub {
owner = "deadpixi";
repo = "sam";
rev = "5d8acb35d78c327d76f00a54857cbd566ed9bc11";
sha256 = "sha256-+vRh6nDPc3UnmEdqROHRel5Te0h5m4eiaERs492xciQ=";
2018-01-19 05:36:35 +00:00
};
2016-09-04 22:08:37 +00:00
postPatch = ''
substituteInPlace config.mk.def \
2018-01-19 05:26:03 +00:00
--replace "/usr/include/freetype2" "${freetype.dev}/include/freetype2" \
--replace "CC=gcc" "CC=${stdenv.cc.targetPrefix}cc" \
--replace "RXPATH=/usr/bin/ssh" "RXPATH=ssh"
2016-09-04 22:08:37 +00:00
'';
2018-01-19 05:26:03 +00:00
CFLAGS = "-D_DARWIN_C_SOURCE";
2016-09-04 22:08:37 +00:00
makeFlags = [ "DESTDIR=$(out)" ];
2018-01-19 05:36:35 +00:00
buildInputs = [ libX11 libXi libXt libXft ];
2022-02-02 10:59:01 +00:00
# build fails when run in parallel
enableParallelBuilding = false;
2016-09-04 22:08:37 +00:00
postInstall = ''
substituteInPlace deadpixi-sam.desktop \
--replace "accessories-text-editor" "$out/share/icons/hicolor/scalable/apps/sam.svg"
2016-09-04 22:08:37 +00:00
mkdir -p $out/share/applications
mkdir -p $out/share/icons/hicolor/scalable/apps
2016-09-04 22:08:37 +00:00
mv deadpixi-sam.desktop $out/share/applications
mv sam.svg $out/share/icons/hicolor/scalable/apps
2016-09-04 22:08:37 +00:00
'';
meta = with lib; {
homepage = "https://github.com/deadpixi/sam";
2016-09-04 22:08:37 +00:00
description = "Updated version of the sam text editor";
license = licenses.lpl-102;
2016-09-04 22:08:37 +00:00
maintainers = with maintainers; [ ramkromberg ];
platforms = platforms.unix;
2016-09-04 22:08:37 +00:00
};
}