biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / sassc / default.nix
blob15995303748f31bae645a5e1a066f49e81f28a98
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, libsass }:
3 stdenv.mkDerivation rec {
4   pname = "sassc";
5   version = "3.6.2"; # also check libsass for updates
7   src = fetchFromGitHub {
8     owner = "sass";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-jcs3+orRqKt9C3c2FTdeaj4H2rBP74lW3HF8CHSm7lQ=";
12   };
14   postPatch = ''
15     export SASSC_VERSION=${version}
16   '';
18   nativeBuildInputs = [ autoreconfHook ];
20   buildInputs = [ libsass ];
22   meta = with lib; {
23     description = "A front-end for libsass";
24     homepage = "https://github.com/sass/sassc/";
25     license = licenses.mit;
26     mainProgram = "sassc";
27     maintainers = with maintainers; [ codyopel pjones ];
28     platforms = platforms.unix;
29   };