Skip to content

Instantly share code, notes, and snippets.

@vandenoever
Created April 20, 2014 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vandenoever/11125470 to your computer and use it in GitHub Desktop.
Save vandenoever/11125470 to your computer and use it in GitHub Desktop.
{ stdenv, fetchurl, buildPythonPackage, pypy, cffi }:
buildPythonPackage rec {
name = "bedup-${version}";
version = "0.9.0";
src = fetchurl {
url = "https://github.com/g2p/bedup/archive/v${version}.tar.gz";
sha256 = "164g2y21ipyg3f58iald64sa8wl2jskyv9qlp4yg54l5wscv2zmk";
};
propagatedBuildInputs = [ pypy cffi ];
doCheck = false;
meta = {
description = "Btrfs deduplication";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.linux;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment