mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
687 B
Nix
31 lines
687 B
Nix
{ fetchurl, lib, stdenv, bash }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.5-rc1";
|
|
pname = "nanoblogger";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/nanoblogger/${pname}-${version}.tar.gz";
|
|
sha256 = "09mv52a5f0h3das8x96irqyznm69arfskx472b7w3b9q4a2ipxbq";
|
|
};
|
|
|
|
buildInputs = [ ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp -r * $out
|
|
cat > $out/bin/nb << EOF
|
|
#!${bash}/bin/bash
|
|
$out/nb "\$@"
|
|
EOF
|
|
chmod 755 $out/bin/nb
|
|
'';
|
|
|
|
meta = {
|
|
description = "Small weblog engine written in Bash for the command line";
|
|
homepage = "http://nanoblogger.sourceforge.net/";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|