This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
replacing old ‘coreutils-8.23’ | |
installing ‘coreutils-8.23’ | |
these derivations will be built: | |
/nix/store/ymayq9jmkzrlw8wnzrn1jmjchi5922zy-coreutils-8.23.drv | |
building path(s) ‘/nix/store/08libdb9bpv4vqpnv01rya56v5z2bx9z-coreutils-8.23’ | |
unpacking sources | |
unpacking source archive /nix/store/0cijybc2m6n9g80phq584fb3sgdb3ldi-coreutils-8.23.tar.xz | |
source root is coreutils-8.23 | |
patching sources | |
configuring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, python27Packages, btrfsProgs }: | |
let | |
python = python27Packages; | |
in | |
python.buildPythonPackage rec { | |
name = "bedup-${version}"; | |
version = "0.9.0"; | |
src = fetchurl { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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"; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, python3, libmsgpack, setuptools }: | |
let | |
version = "0.4.2"; | |
in | |
stdenv.mkDerivation rec { | |
name = "msgpack-python-${version}"; | |
src = fetchurl { | |
url = "https://pypi.python.org/packages/source/m/msgpack-python/msgpack-python-${version}.tar.gz"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, fetchurl, python3, python32Packages, openssl }: | |
let | |
version = "0.12"; | |
in | |
python32Packages.buildPythonPackage rec { | |
name = "attic-${version}"; | |
src = fetchurl { | |
url = "https://pypi.python.org/packages/source/A/Attic/Attic-${version}.tar.gz"; |