nixpkgs/pkgs/development/tools/sassc/default.nix
Ryan Mulligan 10665a956d sassc: 3.4.5 -> 3.4.8
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -h` got 0 exit code
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --help` got 0 exit code
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -v` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --version` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc -h` and found version 3.4.8
- ran `/nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8/bin/sassc --help` and found version 3.4.8
- found 3.4.8 with grep in /nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8
- found 3.4.8 in filename of file in /nix/store/wwc3p4pi03aj49w3qgmp5sq8d1hx2h6f-sassc-3.4.8

cc "@codyopel @pjones"
2018-02-27 15:42:39 -08:00

28 lines
666 B
Nix

{ stdenv, fetchurl, autoreconfHook, libsass }:
stdenv.mkDerivation rec {
name = "sassc-${version}";
version = "3.4.8";
src = fetchurl {
url = "https://github.com/sass/sassc/archive/${version}.tar.gz";
sha256 = "02lnibrl6zgczkhvz01bdp0d2b0rbl69dfv5mdnbr4l8km7sa7b1";
};
patchPhase = ''
export SASSC_VERSION=${version}
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libsass ];
meta = with stdenv.lib; {
description = "A front-end for libsass";
homepage = https://github.com/sass/sassc/;
license = licenses.mit;
maintainers = with maintainers; [ codyopel pjones ];
platforms = platforms.unix;
};
}