anarchism: init at 15.3-1
This commit is contained in:
parent
e1ce60ae7a
commit
14bbfd8548
45
pkgs/data/documentation/anarchism/default.nix
Normal file
45
pkgs/data/documentation/anarchism/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ stdenv, fetchFromGitLab, xdg_utils }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "anarchism";
|
||||||
|
version = "15.3-1";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "salsa.debian.org";
|
||||||
|
owner = "debian";
|
||||||
|
repo = pname;
|
||||||
|
rev = "debian%2F${version}"; # %2F = urlquote("/")
|
||||||
|
sha256 = "04ylk0y5b3jml2awmyz7m1hnymni8y1n83m0k6ychdh0px8frhm5";
|
||||||
|
};
|
||||||
|
|
||||||
|
phases = [ "unpackPhase" "postPatch" "installPhase" ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace debian/anarchism.desktop \
|
||||||
|
--replace "/usr/bin/xdg-open" "${xdg_utils}/bin/xdg-open"
|
||||||
|
substituteInPlace debian/anarchism.desktop \
|
||||||
|
--replace "file:///usr" "file://$out"
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/share/doc/anarchism $out/share/applications $out/share/icons/hicolor/scalable/apps
|
||||||
|
cp -r {html,markdown} $out/share/doc/anarchism
|
||||||
|
cp debian/anarchism.svg $out/share/icons/hicolor/scalable/apps
|
||||||
|
cp debian/anarchism.desktop $out/share/applications
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "http://www.anarchistfaq.org/";
|
||||||
|
changelog = "http://anarchism.pageabode.com/afaq/new.html";
|
||||||
|
description = "Exhaustive exploration of Anarchist theory and practice";
|
||||||
|
longDescription = ''
|
||||||
|
The Anarchist FAQ is an excellent source of information regarding Anarchist
|
||||||
|
(libertarian socialist) theory and practice. It covers all major topics,
|
||||||
|
from the basics of Anarchism to very specific discussions of politics,
|
||||||
|
social organization, and economics.
|
||||||
|
'';
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = with maintainers; [ davidak ];
|
||||||
|
platforms = with platforms; all;
|
||||||
|
};
|
||||||
|
}
|
@ -17163,6 +17163,8 @@ in
|
|||||||
|
|
||||||
amiri = callPackage ../data/fonts/amiri { };
|
amiri = callPackage ../data/fonts/amiri { };
|
||||||
|
|
||||||
|
anarchism = callPackage ../data/documentation/anarchism { };
|
||||||
|
|
||||||
andagii = callPackage ../data/fonts/andagii { };
|
andagii = callPackage ../data/fonts/andagii { };
|
||||||
|
|
||||||
andika = callPackage ../data/fonts/andika { };
|
andika = callPackage ../data/fonts/andika { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user