lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 17.09-beta 21 lines 484 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "shc-${version}"; 5 version = "3.9.3"; 6 rev = "${version}"; 7 8 src = fetchFromGitHub { 9 inherit rev; 10 owner = "neurobin"; 11 repo = "shc"; 12 sha256 = "00fqzg4a0f4kp4wr8swhi5zqds3gh3gf7cgi1cipn16av0818xsa"; 13 }; 14 15 meta = with stdenv.lib; { 16 homepage = http://neurobin.github.io/shc; 17 description = "Shell Script Compiler"; 18 platforms = stdenv.lib.platforms.linux; 19 license = licenses.gpl3; 20 }; 21}